runtime.linearAlloc.mapped (field)

7 uses

	runtime (current package)
		malloc.go#L2429: 	mapped uintptr // one byte past end of mapped space
		malloc.go#L2443: 	l.next, l.mapped = base, base
		malloc.go#L2454: 	if pEnd := alignUp(l.next-1, physPageSize); pEnd > l.mapped {
		malloc.go#L2457: 			n := pEnd - l.mapped
		malloc.go#L2458: 			sysMap(unsafe.Pointer(l.mapped), n, sysStat, vmaName)
		malloc.go#L2459: 			sysUsed(unsafe.Pointer(l.mapped), n, n)
		malloc.go#L2461: 		l.mapped = pEnd